home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN6.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  139 lines

  1. name Fanuc 6MB
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. g >2 G
  9. X ->3.>4
  10. Y ->3.>4
  11. Z ->3.>4
  12. A ->3.>4
  13. I ->3.>4
  14. J ->3.>4
  15. K ->3.>4
  16. Q ->3.>4
  17. R ->3.>4
  18. P >40
  19. F >3.1
  20. H >2
  21. D >2
  22. T >2
  23. M >2
  24. S >4
  25. c 00
  26.  
  27. ModalLetters X Y Z F R                # List of letters that are modal    
  28.  
  29. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  30.  
  31. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  32. First#? N                             # Y or N  'Output 1st sequence no.  
  33. Last#? N                              # Y or N  'Output last sequence no. 
  34.  
  35. HCode X                               # X or X U  'Horizontal char.       
  36. VCode Y                               # Y or Y V  'Vertical char.         
  37. Dcode Z                               # Depth char.                       
  38. FeedCode F                            # Feed rate char.                   
  39.  
  40. Comment ( )                           # Begin End comment char.           
  41.  
  42. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  43. Coolant 8 9 7                         # On, Off & Mist m codes            
  44. DComp 41 42 40                        # Left, Right & Cancel m codes      
  45. LComp 43 49                           # On & Off codes                    
  46.  
  47. Feed G1                             # Linear move                       
  48. Rapid G0                            # Rapid positioning word            
  49. Cw G2                               # Circular move clockwise           
  50. Ccw G3                              # Circular move counter clockwise   
  51.  
  52. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  53.  
  54. CtrCode I J                           # I J or R or I J K L               
  55. Helical? Y
  56.  
  57. Spaces? Y                             # Y or N  'Spaces between words     
  58.  
  59. Incremental? Y                        # Y or N  'Inc or abs output        
  60. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  61. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  62.  
  63. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  64.  
  65. Drill                                 # Drilling canned/manual cycle      
  66. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  67. end cancel
  68.  
  69. Peck                                  # Pecking canned/manual cycle       
  70. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  71. end cancel
  72.  
  73. Tap                                   # Tapping canned/manual cycle       
  74. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate] Q[VBite]
  75. end cancel
  76.  
  77. LTap                                  # Left handed tapping cycle         
  78. G74 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  79. end cancel
  80.  
  81. Ream                                  # Reaming canned/manual cycle       
  82. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  83. end cancel
  84.  
  85. Bore                                  # Boring canned/manual cycle        
  86. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  87. end cancel
  88.  
  89. Back                                  # Back boring canned/manual cycle   
  90. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  91. end cancel
  92.  
  93. Cancel                                # Cancel a canned/manual cycle      
  94. G80
  95. end
  96.  
  97. StartCode                             # Start of the program              
  98. %0
  99. O[Program#]
  100. End
  101.  
  102. 1stToolChange                         # First tool change                 
  103. c0
  104. g91 G28 Z0
  105. G90 G80 G40 G17
  106. T[Tool] M6
  107. M[Direct] S[Speed]
  108. G0 G[Work] X[H] Y[V]
  109. G43 Z[D] H[Lcomp]
  110. M[Cool]
  111. End
  112.  
  113. Infeed                                # Enable cutter comp                
  114. G[Side] X[H] Y[V] D[DComp] F[FRate]
  115. end
  116.  
  117. Outfeed                               # Disable cutter comp               
  118. G1 G40 X[H] Y[V]
  119. end
  120.  
  121. ToolChange                            # Secondary tool changes            
  122. g91 G28 Z0 M9
  123. T[Tool] M6
  124. M[Direct] S[Speed]
  125. G90 G0 X[H] Y[V]
  126. G43 Z[D] H[Lcomp]
  127. M[Cool]
  128. End
  129.  
  130. EndCode                               # End of the program                
  131. g91 G28 Z0 M9
  132. g91 G28 X0 Y0 M5
  133. M6
  134. M30
  135. %0
  136. End
  137.  
  138. Replace "c" with "(TOOL 1 IN SPINDLE)"
  139.